CC = g++
CFLAGS = -std=c++17 -Wall -IC:/msys64/mingw64/include -Iinclude
LDFLAGS = -LC:/msys64/mingw64/lib -lglew32 -lglfw3 -lopengl32

all: main.exe
#my makefile may not work
main.exe: main.cpp
	$(CC) $(CFLAGS) main.cpp -o main.exe $(LDFLAGS)

clean:
	del /f main.exe
